home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / tell.c < prev    next >
C/C++ Source or Header  |  1989-07-31  |  959b  |  45 lines

  1. /* 
  2.  * tell.c --
  3.  *
  4.  *    Emulates the obsolete tell system call.
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header$";
  18. #endif /* not lint */
  19.  
  20. #include <sys/types.h>
  21. #include <sys/file.h>
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * tell --
  27.  *
  28.  * Results:
  29.  *    Returns the current offset in a file.
  30.  *
  31.  * Side effects:
  32.  *    None.
  33.  *
  34.  *----------------------------------------------------------------------
  35.  */
  36.  
  37. off_t
  38. tell(fd)
  39.     int fd;
  40. {
  41.  
  42.     return lseek(fd, 0L, L_INCR);
  43. }
  44.  
  45.